home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
knowhow4
/
simple.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-21
|
308b
|
17 lines
#ifndef __SIMPLE_H_
#define __SIMPLE_H_
// File contains some simplifications.
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef int bool;
typedef int BOOL;
#define TRUE 1
#define FALSE 0
#define ON TRUE
#define OFF FALSE
#endif __SIMPLE_H_